home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 1.st / POGOSRC.ARC / STCEL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-20  |  986 b   |  51 lines

  1.  
  2. #ifndef WORD
  3. #define WORD int
  4. #endif WORD
  5.  
  6. #ifndef UWORD
  7. #define UWORD unsigned
  8. #endif UWORD
  9.  
  10.  
  11. #define    XMAX    320
  12. #define    YMAX    200
  13. #define COLORS    16
  14. #define BITPLANES 4
  15. #define CH_WIDTH 8
  16. #define CH_HEIGHT 9
  17.  
  18. /* handy macro to find out how much memory a raster line takes up */
  19. #define Mask_line(width) ((((width)+15)>>3)&0xfffe)
  20. #define Mask_block(width, height) (Mask_line(width)*(height))
  21. #define Raster_line(width) (((((width)+15)>>3)&0xfffe)<<2)
  22. #define Raster_block(width, height) (Raster_line(width)*(height))
  23. #define Pixels16(width)    (((width)+15)>>4)
  24.  
  25.  
  26. #define SCREEN_LBYTES Raster_line(XMAX)
  27. #define SCREEN_LWORDS (SCREEN_LBYTES/2)
  28.  
  29. struct cursor 
  30.     {
  31.     WORD type;
  32.     UWORD *image;
  33.     WORD width,height;
  34.     WORD xhot, yhot;
  35.     };
  36.  
  37.  
  38. struct cel
  39.     {
  40.     WORD xoff, yoff;
  41.     WORD width, height;
  42.     WORD cmap[16];
  43.     WORD *image;
  44.     long image_size;
  45.     WORD *mask;
  46.     };
  47. typedef struct cel Cel;
  48.  
  49. extern WORD *cscreen;
  50. extern WORD *sys_cmap;
  51.